home *** CD-ROM | disk | FTP | other *** search
/ Beginning Mac Programming / Beginning Mac Programming.bin / Open Me for REALbasic 3 / REALbasic 3.2 / Example Projects / Techniques / Examples by David Grogono / About the Code examples next >
Text File  |  2001-01-31  |  1KB  |  35 lines

  1. Code examples by David Grogono:
  2.  
  3. Jan 30, 2001
  4.  
  5. These are examples are I made when I was teaching myself REALbasic.
  6. I would probably do some things better and cleverer if I started from scratch,
  7. but even as is the code will likely help demonstrate how to use certain features.
  8.  
  9.  
  10. Polygon:
  11.     This is a fairly comprehensive example.
  12.     It just allows you to display a polygon and adjust attributes from a tool palette.
  13.   Things it does:
  14.     Multiple Documents with a windows menu
  15.     Seperate floating tool palette
  16.     Save, SaveAs, Open, New and double clicking of a saved file
  17.     Page Setup, Print
  18.     Copy, Paste, internally and pasting a picture to other apps
  19.     Multiple Undos and Redos (artifical limit of 100)
  20.     Drag and Drop from one window to another.
  21.     Drag a clipping to the desktop and back again (MacData is attached)
  22.  
  23. Multi Document:
  24.     Just a basic sample app for multiple Documents and a windows menu.
  25.  
  26. Calendar Window Example:
  27.     Demonstrates one way of calling another window and getting a result back.
  28.  
  29. PrimePanMagicSquares:
  30.     An example I wrote quickly to show my Dad how easy and powerful REALbasic is.
  31.  
  32. Window with breaking glass:
  33.     Probably the most fun of the examples, based on a trick from Matt Neuburg's
  34.     book on capturing screen pixels before the window is drawn.  This trick did not
  35.     work on win32, so this example is Mac only.